home *** CD-ROM | disk | FTP | other *** search
- property psp_mysprite, pi_mydisplayloch, pi_myhideloch, pb_slideflag, pc_mylink, pi_nextbannertime, pi_bannerdisplaytime, pi_exith, pi_mytargetloch
- global gl_bannerlist, gl_bannerusedlist
-
- on beginSprite me
- psp_mysprite = sprite(me.spriteNum)
- pi_mydisplayloch = psp_mysprite.bottom
- pi_myhideloch = the stageBottom - the stageTop + 1500
- hide(me)
- end
-
- on initbannerad me, nextbanner
- pb_slideflag = 1
- hide(me)
- pi_mytargetloch = pi_mydisplayloch
- psp_mysprite.member = nextbanner.filmloopname
- psp_mysprite.width = psp_mysprite.member.width
- psp_mysprite.height = psp_mysprite.member.height
- pc_mylink = nextbanner.linkID
- pi_exith = pi_myhideloch
- end
-
- on slideoutbannerad me
- pb_slideflag = 1
- pi_mytargetloch = pi_exith
- end
-
- on hide me
- psp_mysprite.locV = pi_myhideloch
- end
-
- on exitFrame me
- if pb_slideflag = 1 then
- h = (psp_mysprite.bottom - pi_mytargetloch) / 2.0
- psp_mysprite.locV = psp_mysprite.locV - h
- if h <= 1 then
- pb_slideflag = 0
- end if
- end if
- end
-
- on mouseUp me
- if (pc_mylink <> "na") and (pc_mylink <> EMPTY) then
- gotoNetPage("http://www.goals-oncd.com/cdid.cfm?id=" & pc_mylink)
- end if
- end
-
- on getPropertyDescriptionList me
- return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
- end
-